/* Common Start */

.temp-hide{ color: #ffffff;  display: none !important;

}

.header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
    background-color: rgb(var(--theme-color));
}

.header .navbar{
    padding: 0;
    box-shadow: 0 0 0.5rem rgba(0,0,0,0.3);
}

.header .navbar-brand{
    display: block;
    margin: 0;
    padding: 0;
}

.header .navbar-logo{
    width: 10rem;
}

.header #navbarNav{
    justify-content: flex-end;
}

.header .nav-item:not(:last-child){
    margin-right: 2.5rem;
}

.header .nav-item.dropdown{
    display: flex;
    align-items: center;
}

.header .nav-link{
    position: relative;
    padding: 1.5rem 0!important;
    font-size: 1rem;
    color: #ffffff;
}

.header .nav-item.active .nav-link,
.header .nav-item:hover .nav-link{
    color: #ffffff;
}

.header .nav-link:after{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity ease 0.3s;
}

.header .nav-item.active .nav-link:after,
.header .nav-item:hover .nav-link::after{
    opacity: 1;
}

.header .nav-item .dropdown-toggle{
    margin-left: 0.375rem;
    color: #ffffff;
}

.header .nav-item.show .dropdown-toggle{
    transform: rotate(180deg);
}

.header .nav-item .dropdown-menu{
    margin: 0;
}

.header .nav-item .dropdown-item{
    color: #111111;
    transition: background-color ease 0.3s, color ease 0.3s;
}

.header .nav-item .dropdown-item:hover{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}



.footer{
    background-color: rgb(var(--theme-color));
}

.footer .footer-body{
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer .footer-nav{
    /*padding: 0 1rem;*/
    /*border-radius: 0.375rem;*/
    /*background-color: rgba(var(--theme-light-color),0.8);*/
    text-align: center;
}

.footer .footer-nav-item{
    position: relative;
    display: inline-block;
    margin: 0 0.75rem;
    /*padding: 1rem 0;*/
    color: rgb(255,255,255,1);
}

.footer .footer-nav-item::before{
    content: '';
    display: block;
    position: absolute;
    right: -1rem;
    top: 0.25em;
    width: 1px;
    height: 1em;
    background-color: #ffffff;
    transform: rotate(15deg);
}

.footer .footer-nav-item:last-child::before{
    display: none;
}

.footer .footer-nav-item::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    opacity: 0;
}

.footer .footer-nav-item:hover::after{
    opacity: 1;
}

.footer .footer-info{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .footer-about,
.footer .footer-contact,
.footer .footer-qrcode{
    width: 30%;
}

.footer .footer-info-title{
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
}

.footer .footer-about-desc{
    line-height: 2;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
}

.footer .footer-contact-item{
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #ffffff;
}

.footer .footer-contact-item:not(:last-child){
    margin-bottom: 0.625rem;
}

.footer .footer-contact-item .icon{
    flex-shrink: 0;
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
}

.footer .footer-contact-icon-tel{
    background-image: url('../icon/footer-tel.svg');
}

.footer .footer-contact-icon-email{
    background-image: url('../icon/footer-email.svg');
}

.footer .footer-contact-icon-time{
    background-image: url('../icon/footer-time.svg');
}

.footer .footer-contact-icon-address{
    background-image: url('../icon/footer-address.svg');
}

.footer .footer-qrcode-list{
    display: flex;
    flex-wrap: wrap;
}

.footer .footer-qrcode-item:not(:last-child){
    margin-right: 1rem;
}

.footer .footer-qrcode-item .image-wrap{
    max-width: 7rem;
}

.footer .footer-links{
    margin-top: 2rem;
}

.footer .footer-links dt{
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.footer .footer-links dd{
    display: inline-block;
    margin-right: 0.875rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.footer .footer-copyright{
    padding: 1rem 0;
    background-color: #101830;
    text-align: center;
}

.footer .footer-copyright>*{
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.footer .footer-copyright>a:hover{
    color: rgba(255,255,255,1);
    text-decoration: underline;
}

.footer-mobile{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0.375rem;
    background-color: #ffffff;
}

.footer-mobile .footer-mobile-tel{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    border-radius: 0.25rem;
    background-color: rgb(var(--theme-color));
    font-size: 1rem;
    color: #ffffff;
}

.footer-mobile .footer-mobile-tel .icon{
    margin-right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('../icon/footer-mobile-tel.svg');
}
/* Common End */

/* Home Start */
.home-page .banner-section .swiper-pagination-wrap{
    position: absolute;
    bottom: 2rem;
    z-index: 10;
}

.home-page .page-section{
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-page .page-section .section-title-wrap{
    margin-bottom: 1.75rem;
    text-align: center;
}

.home-page .page-section .section-title{
    position: relative;
    font-size: 1.625rem;
}

.home-page .page-section .section-title-wrap.title-white .section-title{
    color: #ffffff;
}

.home-page .page-section .section-title::after{
    content: '';
    display: block;
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    z-index: 5;
    width: 6rem;
    height: 1rem;
    background-image: url('../images/titleBottomLine.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.home-page .page-section .section-title-wrap.title-white .section-title::after{
    background-image: url('../images/titleBottomLineWhite.png');
}

.home-page .page-section .section-subtitle{
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #999999;
}

.home-page .page-section .section-title-wrap.title-white .section-subtitle{
    color: #ffffff;
}

.home-page .data-section{
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
}

.home-page .data-section .data-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-page .data-section .data-item{
    text-align: center;
    overflow: hidden;
    border: 1px solid  #ececec;
}

.home-page .data-section .data-item .image-wrap{
    padding: 0.75rem 0;
    height: 6rem;
    background-color: #f5f5f5;
}

.home-page .data-section .data-item-content{
    padding: 1rem;
}

.home-page .data-section .data-item-title{
    margin-bottom: 0.375rem;
    font-size: 2rem;
    font-weight: bold;
    color: rgb(var(--theme-color));
}

.home-page .data-section .data-item-hide-desc{
    text-align: justify;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #555555;
}

.home-page .product-section{
    background-color: #f5f5f5;
}

.home-page .product-section .product-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-page .product-section .product-item-body{
    padding-top: 0.75rem;
    text-align: center;
}

.home-page .product-section .product-item-title{
    font-size: 1.25rem;
}

.home-page .product-section .product-item-desc{
    margin-top: 0.5rem;
    line-height: 1.75;
    font-size: 1rem;
    color: #888888;
}

.home-page .product-section .product-item-desc b{
    color: red;
}

.home-page .product-section .product-item-btn{
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.625rem 2rem;
    background-color: rgb(var(--theme-color));
    font-size: 0.875rem;
    color: #ffffff;
    cursor: pointer;
}

.home-page .product-section .product-item-btn:hover{
    background-color: rgb(var(--theme-light-color));
}

.home-page .case-section{
    background-color: #ffffff;
}

.home-page .case-section .swiper-wrapper{
    align-items: stretch;
}

.home-page .case-section .swiper-slide{
    height: auto;
}

.home-page .case-section .case-item{
    height: 100%;
}

.home-page .case-section .case-item-href{
    display: block;
    height: 100%;
    padding: 0.75rem;
    border: 1px solid  #cccccc;
}

.home-page .case-section .case-item-body{
    padding-top: 0.75rem;
}

.home-page .case-section .case-item-title{
    font-size: 1.125rem;
}

.home-page .case-section .case-item-desc{
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666666;
}

.home-page .case-section .case-item-btn{
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem;
    background-color: rgb(var(--theme-color));
    font-size: 0.75rem;
    color: #ffffff;
}

.home-page .case-section .case-item-btn:hover{
    background-color: rgb(var(--theme-light-color));
}

.home-page .advantage-section{
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.home-page .advantage-section .advantage-body{
    max-width: 30rem;
}

.home-page .advantage-section .advantage-list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-page .advantage-section .advantage-item{
    padding: 0.875rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0.875rem;
}

.home-page .advantage-section .advantage-item-title{
    margin-top: 0.375rem;
}

.home-page .process-section .process-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-page .process-section .process-item{
    text-align: center;
    color: #ffffff;
}

.home-page .process-section .process-item-image-wrap{
    border-radius: 0.5rem;
}

.home-page .process-section .process-item-title{
    margin-top: 0.5rem;
    font-size: 1.125rem;
}

.home-page .partner-section .partner-list{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-page .news-section{
    background-color: #f5f5f5;
}

.home-page .news-section .swiper-wrapper{
    align-items: stretch;
}

.home-page .news-section .swiper-slide{
    height: auto;
}

.home-page .news-section .news-item{
    height: 100%;
}

.home-page .news-section .news-item-href{
    display: block;
    height: 100%;
    background-color: #ffffff;
}

.home-page .news-section .news-item-body{
    padding: 1rem 1.25rem;
}

.home-page .news-section .news-item-title{
    font-size: 1rem;
}

.home-page .news-section .news-item-desc{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #999999;
}

.home-page .news-section .news-item-btn{
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem;
    background-color: rgb(var(--theme-color));
    font-size: 0.75rem;
    color: #ffffff;
}
/* Home End */

/* Product Start */
.product-page .list-section{
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.product-page .list-section .product-cate-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 4rem;
}

.product-page .list-section .product-cate-item-title{
    padding: 1rem 1rem;
    background-color: #eeeeee;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
}

.product-page .list-section .product-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-page .list-section .product-item-href{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product-page .list-section .product-item-image{
    width: 40%;
    text-align: center;
}

.product-page .list-section .product-item:hover img{
    transform: scale(1.1);
}

.product-page .list-section .product-item-btn{
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: #cccccc;
    font-size: 0.875rem;
    color: #666666;
    transition: background-color ease 0.5s, color ease 0.5s;
}

.product-page .list-section .product-item:hover .product-item-btn{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.product-page .list-section .product-item-content{
    width: 60%;
}

.product-page .list-section .product-item-title{
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.product-page .list-section .product-item-desc{
    font-size: 0.875rem;
    line-height: 2;
    color: #333333;
}

.product-page .list-section .product-item-desc > span{
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

.product-page .list-section .product-item-desc > span > span{
    font-weight: 700;
    font-size: 1.25rem;
    color: red;
}

.product-page .intro-section{
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f5f5f5;
}

.product-page .intro-section .intro-content{
    text-align: center;
}

.product-page .info-section{
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
}

.product-page .info-section .info-body{
    display: flex;
    flex-wrap: wrap;
}

.product-page .info-section .info-images{
    width: 40%;
}

.product-page .info-section .info-images-show-item{
    border: 1px solid #ececec;
}

.product-page .info-section .info-images-control{
    margin-top: 0.75rem;
}

.product-page .info-section .info-images-control-item{
    border: 1px solid #ececec;
    cursor: pointer;
}

.product-page .info-section .info-content{
    width: 60%;
    padding-top: 2rem;
    padding-left: 3rem;
}

.product-page .info-section .info-title{
    font-size: 1.625rem;
    color: #1a1a1a;
}

.product-page .info-section .info-attr-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.product-page .info-section .info-attr-item{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1;
}

.product-page .info-section .info-attr-item-title{
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.product-page .info-section .info-attr-item-value{
    font-size: 1rem;
    line-height: 1.5;
    color: #666666;
}

.product-page .info-section .info-attr-item-value del{
    font-weight: 700;
    font-size: 1.25rem;
}

.product-page .info-section .info-attr-item-price{
    font-weight: 700;
    font-size: 1.375rem;
    color: red;
}

.product-page .info-section .info-attr-item-plan span{
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: #e5e5e5;
    font-size: 0.875rem;
    color: #666666;
    transition: background-color ease 0.5s, color ease 0.5s;
    cursor: pointer;
}

.product-page .info-section .info-attr-item-plan span.active{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.product-page .info-section .info-btn-wrap{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-page .info-section .info-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    /*width: 14rem;*/
    line-height: 3rem;
}

.product-page .info-section .info-btn:not(:last-child){
    margin-right: 1.5rem;
}

.product-page .info-section .info-btn .icon{
    margin-right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.product-page .info-section .online-btn{
    border: 1px solid rgb(var(--theme-color));
    background-color: rgb(var(--theme-color));
    font-size: 1rem;
    color: #ffffff;
}

.product-page .info-section .online-btn .icon{
    background-image: url('../icon/detail-service.svg');
}

.product-page .info-section .tel-btn{
    border: 1px solid currentColor;
    font-size: 1.25rem;
    font-weight: bold;
    color: #82c720;
}

.product-page .info-section .tel-btn .icon{
    background-image: url('../icon/detail-tel.svg');
}

.product-page .detail-section{
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f5f5f5;
}

.product-page .detail-section .detail-content{
    text-align: center;
}
/* Product End */

/* Case Start */
.case-page .list-section .case-list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.case-page .list-section .case-item:hover img{
    transform: scale(1.1);
}

.case-page .list-section .case-item-title{
    margin-top: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.case-page .list-section .case-item-desc{
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666666;
    transition: color ease 0.5s;
}

.case-page .list-section .case-item-btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #e5e5e5;
    font-size: 0.875rem;
    color: #666666;
    transition: background-color ease 0.5s, border-color ease 0.5s, color ease 0.5s;
}

.case-page .list-section .case-item:hover .case-item-btn{
    background-color: rgb(var(--theme-color));
    border-color: rgb(var(--theme-color));
    color: #ffffff;
}

.case-page .detail-section .detail-title{
    text-align: center;
    font-size: 2rem;
    color: #1a1a1a;
}

.case-page .detail-section .detail-attr-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.case-page .detail-section .detail-attr-item{
    position: relative;
    margin: 0.125 0.75rem;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #666666;
}

.case-page .detail-section .detail-attr-item::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border-radius: 100%;
    background-color: #cccccc;
}

.case-page .detail-section .detail-images{
    width: 60%;
    margin: 1.5rem auto 0;
}

.case-page .detail-section .detail-images-item{
    height: 35rem;
    border: 1px solid #eeeeee;
}

.case-page .detail-section .detail-images-item .image-wrap{
    height: 100%;
}

.case-page .detail-section .detail-images .swiper-pagination-wrap{
    position: absolute;
    bottom: 2rem;
    z-index: 5;
}

.case-page .detail-section .detail-images .swiper-pagination-bullet{
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: #ffffff;
}

.case-page .detail-section .detail-content{
    margin-top: 2rem;
    line-height: 1.75;
}

.case-page .detail-section .detail-pages{
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.case-page .detail-section .detail-pages a[href]:hover{
    text-decoration: underline;
}
/* Case End */

/* Article Start */
.article-page .list-section .article-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
}

.article-page .list-section .article-item{
    background-color: #ffffff;
    transition: background-color ease 0.5s;
}

.article-page .list-section .article-item:hover{
    background-color: rgb(var(--theme-color));
}

.article-page .list-section .article-item-href{
    display: flex;
    flex-wrap: wrap;
}

.article-page .list-section .article-item .image-wrap{
    width: 25%;
    flex-shrink: 0;
}

.article-page .list-section .article-item:hover img{
    transform: scale(1.1);
}

.article-page .list-section .article-item-content{
    width: 75%;
    padding: 1.25rem 1.5rem;
}

.article-page .list-section .article-item-title{
    font-size: 1.5rem;
    transition: color ease 0.5s;
}

.article-page .list-section .article-item:hover .article-item-title{
    color: #ffffff;
}

.article-page .list-section .article-item-info{
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #888888;
    transition: color ease 0.5s;
}

.article-page .list-section .article-item:hover .article-item-info{
    color: #ffffff;
}

.article-page .list-section .article-item-desc{
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #666666;
    transition: color ease 0.5s;
}

.article-page .list-section .article-item:hover .article-item-desc{
    color: #ffffff;
}

.article-page .detail-section{
    padding: 3rem 2.5rem 2.5rem;
    background-color: #ffffff;
}

.article-page .detail-section .detail-title{
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.article-page .detail-section .detail-attr-list{
    margin-top: 1rem;
    text-align: center;
}

.article-page .detail-section .detail-attr-item{
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 0.8125rem;
    color: #aaaaaa;
}

.article-page .detail-section .detail-division-line{
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    height: 1px;
    background-color: #f0f0f0;
}

.article-page .detail-section .detail-content{
    line-height: 2;
    font-size: 0.875rem;
}

.article-page .detail-section .detail-pages a{
    position: relative;
    display: block;
    padding-left: 1rem;
    font-size: 0.875rem;
    color: #666666;
    transition: color ease 0.5s;
}

.article-page .detail-section .detail-pages a[href]:hover{
    color: rgb(var(--theme-color));
}

.article-page .detail-section .detail-pages a:not(:last-child){
    margin-bottom: 1.25rem;
}

.article-page .detail-section .detail-pages a::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
    background-color: #a0a0a0;
    border-radius: 100%;
    transition: background-color ease 0.5s;
}

.article-page .detail-section .detail-pages a[href]:hover::after{
    background-color: rgb(var(--theme-color));
}
/* Article End */

/* About Start */
.single-page .detail-section .detail-content{
    line-height: 1.75;
}
/* About End */

/* 权威认证 */
.qwrz-page .detail-section{
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.qwrz-page .detail-section:nth-child(odd){
    background-color: rgb(var(--theme-color));
}

.qwrz-page .detail-section .detail-content{
    font-size: 1rem;
    line-height: 1.75;
    color: #333333;
}

.qwrz-page .detail-section:nth-child(odd) .detail-content{
    color: #ffffff;
}

.qwrz-page .detail-section:nth-child(odd) .detail-content img{
    background-color: #ffffff;
}

.qwrz-page .detail-section .detail-content h1,
.qwrz-page .detail-section .detail-content h2,
.qwrz-page .detail-section .detail-content h3,
.qwrz-page .detail-section .detail-content h4,
.qwrz-page .detail-section .detail-content h5,
.qwrz-page .detail-section .detail-content h6{
    line-height: 1.5;
    color: #1a1a1a;
}

.qwrz-page .detail-section:nth-child(odd) .detail-content h1,
.qwrz-page .detail-section:nth-child(odd) .detail-content h2,
.qwrz-page .detail-section:nth-child(odd) .detail-content h3,
.qwrz-page .detail-section:nth-child(odd) .detail-content h4,
.qwrz-page .detail-section:nth-child(odd) .detail-content h5,
.qwrz-page .detail-section:nth-child(odd) .detail-content h6{
    color: #ffffff;
}

.qwrz-page .detail-section .detail-content h2{
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.25rem;
    font-weight: 600;
}

.qwrz-page .detail-section .detail-content h2::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    width: 100%;
    height: 14px;
    background-image: url('../icon/qwrz-title-blue.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.qwrz-page .detail-section:nth-child(odd) .detail-content h2::after{
    background-image: url('../icon/qwrz-title-white.png');
}

.qwrz-page .detail-section .detail-content h3{
    font-size: 1.5rem;
}

.qwrz-page .detail-section .detail-content a{
    color: blue;
}

.qwrz-page .detail-section:nth-child(odd) .detail-content a{
    text-decoration: underline;
    color: #ffffff;
}
/* 权威认证 */

/* Contact Start */
.contact-page .info-section .info-body{
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-page .info-section .info-content{
    width: 50%;
    padding: 3rem 3.5rem;
}

.contact-page .info-section .info-name{
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.contact-page .info-section .info-contact-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-page .info-section .info-contact-item{
    display: flex;
}

.contact-page .info-section .info-contact-item .icon{
    margin-right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.contact-page .info-section .info-contact-icon-tel{
    background-image: url('../icon/contact-tel.svg');
}

.contact-page .info-section .info-contact-icon-phone{
    background-image: url('../icon/contact-phone.svg');
}

.contact-page .info-section .info-contact-icon-time{
    background-image: url('../icon/contact-time.svg');
}

.contact-page .info-section .info-contact-icon-email{
    background-image: url('../icon/contact-email.svg');
}

.contact-page .info-section .info-contact-icon-address{
    background-image: url('../icon/contact-address.svg');
}

.contact-page .info-section .info-contact-item-content{
    padding-top: 0.125rem;
}

.contact-page .info-section .info-contact-item-title{
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

.contact-page .info-section .info-contact-item-value{
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #666666;
}

.contact-page .info-section .info-contact-item b{
    font-weight: bold;
    color: #1a1a1a;
}

.contact-page .info-section .info-contact-item a:hover{
    text-decoration: underline;
}

.contact-page .info-section .info-map{
    width: 50%;
    min-height: 35rem;
}
/* Contact End */

@media screen and (max-width: 998px) {
    .header .navbar{
        padding: 0.375rem 0.75rem;
    }

    .header .navbar-toggler{
        padding: 0;
        width: 3rem;
        height: 2.5rem;
        border-radius: 0;
        border: 1px solid #ffffff;
        background-image: url('../icon/nav-main.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 50%;
    }

    .header .navbar-toggler-icon{
        display: none;
    }

    .header .nav-item:not(:last-child){
        margin-right: 0;
    }

    .header .navbar-nav{
        padding: 0.75rem 0;
    }

    .header .nav-link{
        margin: 0 auto;
        padding: 0.5rem 0!important;
        max-width: max-content;
        text-align: center;
    }

    .header .nav-link:after{
        height: 0.125rem;
    }

    .footer .footer-body{
        padding-top: 1.5rem;
    }

    .footer .footer-info{
        margin-top: 1rem;
    }

    .footer .footer-about{
        display: none;
    }

    .footer .footer-contact, .footer .footer-qrcode{
        width: 50%;
    }

    .footer .footer-info-title{
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .footer .footer-contact-item{
        font-size: 0.75rem;
    }

    .footer .footer-contact-item .icon{
        margin-right: 0.375rem;
        width: 1rem;
        height: 1rem;
    }

    .footer .footer-contact-item:not(:last-child){
        margin-bottom: 0.5rem;
    }

    .footer .footer-links{
        margin-top: 1rem;
    }

    .footer .footer-copyright{
        padding: 0.75rem 0;
        line-height: 1.25;
    }

    .footer .footer-copyright>*{
        margin: 0 0.25rem;
        font-size: 0.75rem;
    }

    .home-page .page-section .section-title-wrap{
        margin-bottom: 1.5rem;
    }

    .home-page .page-section .section-title{
        font-size: 1.5rem;
    }

    .home-page .page-section .section-title::after{
        bottom: -1.25rem;
    }

    .home-page .page-section .section-subtitle{
        margin-top: 1.5rem;
        font-size: 1rem;
    }

    .home-page .banner-section .swiper-pagination-wrap{
        bottom: 1rem;
    }

    .swiper-container-wrap .swiper-pagination-bullet{
        width: 1.25rem;
        height: 2px;
    }

    .home-page .data-section .data-list{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1rem;
    }

    .home-page .data-section .data-item .image-wrap{
        padding: 0.25rem 0;
        height: 5rem;
    }

    .home-page .data-section .data-item-content{
        padding: 0.75rem;
    }

    .home-page .data-section .data-item-title{
        font-size: 1.5rem;
    }

    .home-page .product-section .product-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .home-page .product-section .product-item-title{
        font-size: 1rem;
    }

    .home-page .product-section .product-item-desc{
        font-size: 0.75rem;
    }

    .home-page .product-section .product-item-btn{
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }

    .home-page .advantage-section{
        padding-top: 3rem;
        padding-bottom: 3rem;
        background-position: right center;
    }

    .home-page .advantage-section .advantage-list{
        gap: 0.5rem;
    }

    .home-page .advantage-section .advantage-item{
        padding: 0.75rem 0.375rem;
    }

    .home-page .advantage-section .advantage-item-title{
        font-size: 0.875rem;
    }

    .home-page .process-section .process-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .home-page .process-section .process-item-title{
        margin-top: 0.25rem;
        font-size: 1rem;
    }

    .home-page .partner-section .partner-list{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .product-page .list-section{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .product-page .list-section .product-cate-list{
        gap: 2rem;
    }

    .product-page .list-section .product-cate-item-title{
        font-size: 1.25rem;
    }

    .product-page .list-section .product-list{
        margin-top: 1.5rem;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem;
    }

    .product-page .intro-section{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .product-page .info-section .info-images{
        width: 100%;
    }

    .product-page .info-section .info-content{
        padding-left: 0;
        width: 100%;
    }

    .product-page .info-section .info-title{
        font-size: 1.375rem;
    }

    .product-page .info-section .info-attr-list{
        margin-top: 1rem;
        gap: 0.75rem;
    }

    .product-page .info-section .info-attr-item-title{
        font-size: 1rem;
    }

    .product-page .info-section .info-attr-item:nth-child(n+3) .info-attr-item-value{
        width: 100%;
        margin-top: 0.25rem;
    }

    .product-page .info-section .info-attr-item:nth-child(3){
        margin-top: 0.5rem;
    }

    .product-page .info-section .info-attr-item-value del{
        font-size: 1rem;
    }

    .product-page .info-section .info-attr-item-price{
        font-size: 1rem;
    }

    .product-page .info-section .info-btn-wrap{
        margin-top: 1rem;
    }

    .product-page .info-section .info-btn{
        padding: 0 1rem;
    }

    .product-page .info-section .info-btn:not(:last-child){
        margin-right: 1rem;
    }

    .product-page .info-section .tel-btn{
        font-size: 1rem;
    }

    .product-page .info-section .info-btn .icon{
        width: 1.25rem;
        height: 1.25rem;
    }

    .product-page .detail-section{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .case-page .list-section .case-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.75rem;
    }

    .case-page .list-section .case-item-title{
        margin-top: 0.75rem;
        font-size: 1.125rem;
    }

    .case-page .list-section .case-item-btn{
        margin-top: 0.75rem;
    }

    .case-page .detail-section .detail-title{
        font-size: 1.375rem;
    }

    .case-page .detail-section .detail-images{
        width: 100%;
        margin: 1rem auto 0;
    }

    .case-page .detail-section .detail-images-item{
        height: 18rem;
    }

    .case-page .detail-section .detail-images .swiper-pagination-wrap{
        bottom: 1rem;
    }

    .case-page .detail-section .detail-content{
        margin-top: 1.5rem;
        line-height: 2;
    }

    .case-page .detail-section .detail-pages{
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .case-page .detail-section .detail-pages a{
        display: block;
        width: 100%;
    }

    .article-page .list-section .article-item .image-wrap{
        width: 100%;
    }

    .article-page .list-section .article-item-content{
        width: 100%;
        padding: 1rem;
    }

    .article-page .list-section .article-item-title{
        font-size: 1.125rem;
    }

    .article-page .sidebar-page-body{
        margin-bottom: 1.5rem;
    }

    .article-page .detail-section{
        padding: 1.5rem 0.75rem;
    }

    .article-page .detail-section .detail-title{
        font-size: 1.25rem;
    }

    .article-page .detail-section .detail-division-line{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .article-page .detail-section .detail-pages a:not(:last-child){
        margin-bottom: 0.5rem;
    }

    .qwrz-page .global-nav{
        display: none;
    }

    .qwrz-page .detail-section{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .qwrz-page .detail-section .detail-content h2{
        margin-bottom: 2.5rem;
        font-size: 1.375rem;
    }

    .qwrz-page .detail-section .detail-content h3{
        font-size: 1.125rem;
    }

    .contact-page .info-section .info-content{
        padding: 1.5rem;
        width: 100%;
    }

    .contact-page .info-section .info-contact-list{
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .contact-page .info-section .info-map{
        width: 100%;
        min-height: 20rem;
    }
}